mirror of
				https://github.com/tobspr/shapez.io.git
				synced 2025-06-13 13:04:03 +00:00 
			
		
		
		
	Minor adjustments
This commit is contained in:
		
							parent
							
								
									fe378654c2
								
							
						
					
					
						commit
						7fd0451ddc
					
				@ -39,6 +39,10 @@
 | 
			
		||||
            a {
 | 
			
		||||
                color: $colorBlueBright;
 | 
			
		||||
            }
 | 
			
		||||
            li {
 | 
			
		||||
                @include SuperSmallText;
 | 
			
		||||
                @include S(margin-bottom, 10px);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
export const CHANGELOG = [
 | 
			
		||||
    {
 | 
			
		||||
        version: "1.1.11",
 | 
			
		||||
        date: "unrelease",
 | 
			
		||||
        date: "unreleased",
 | 
			
		||||
        entries: [
 | 
			
		||||
            "Pinned shapes are now smart, they dynamically update their goal and also unpin when no longer required. Completed objectives are now rendered transparent.",
 | 
			
		||||
            "Improve upgrade number rounding, so there are no goals like '37.4k', instead it will now be '35k'",
 | 
			
		||||
 | 
			
		||||
@ -144,28 +144,9 @@ export const allApplicationSettings = [
 | 
			
		||||
         */
 | 
			
		||||
        (app, value) => app.sound.setMusicMuted(value)
 | 
			
		||||
    ),
 | 
			
		||||
    new EnumSetting("scrollWheelSensitivity", {
 | 
			
		||||
        options: scrollWheelSensitivities.sort((a, b) => a.scale - b.scale),
 | 
			
		||||
        valueGetter: scale => scale.id,
 | 
			
		||||
        textGetter: scale => T.settings.labels.scrollWheelSensitivity.sensitivity[scale.id],
 | 
			
		||||
        category: categoryApp,
 | 
			
		||||
        restartRequired: false,
 | 
			
		||||
        changeCb:
 | 
			
		||||
            /**
 | 
			
		||||
             * @param {Application} app
 | 
			
		||||
             */
 | 
			
		||||
            (app, id) => app.updateAfterUiScaleChanged(),
 | 
			
		||||
    }),
 | 
			
		||||
 | 
			
		||||
    // GAME
 | 
			
		||||
    new EnumSetting("movementSpeed", {
 | 
			
		||||
        options: movementSpeeds.sort((a, b) => a.multiplier - b.multiplier),
 | 
			
		||||
        valueGetter: multiplier => multiplier.id,
 | 
			
		||||
        textGetter: multiplier => T.settings.labels.movementSpeed.speeds[multiplier.id],
 | 
			
		||||
        category: categoryGame,
 | 
			
		||||
        restartRequired: false,
 | 
			
		||||
        changeCb: (app, id) => {},
 | 
			
		||||
    }),
 | 
			
		||||
 | 
			
		||||
    new EnumSetting("theme", {
 | 
			
		||||
        options: Object.keys(THEMES),
 | 
			
		||||
        valueGetter: theme => theme,
 | 
			
		||||
@ -193,6 +174,28 @@ export const allApplicationSettings = [
 | 
			
		||||
        enabled: !IS_DEMO,
 | 
			
		||||
    }),
 | 
			
		||||
 | 
			
		||||
    new EnumSetting("scrollWheelSensitivity", {
 | 
			
		||||
        options: scrollWheelSensitivities.sort((a, b) => a.scale - b.scale),
 | 
			
		||||
        valueGetter: scale => scale.id,
 | 
			
		||||
        textGetter: scale => T.settings.labels.scrollWheelSensitivity.sensitivity[scale.id],
 | 
			
		||||
        category: categoryGame,
 | 
			
		||||
        restartRequired: false,
 | 
			
		||||
        changeCb:
 | 
			
		||||
            /**
 | 
			
		||||
             * @param {Application} app
 | 
			
		||||
             */
 | 
			
		||||
            (app, id) => app.updateAfterUiScaleChanged(),
 | 
			
		||||
    }),
 | 
			
		||||
 | 
			
		||||
    new EnumSetting("movementSpeed", {
 | 
			
		||||
        options: movementSpeeds.sort((a, b) => a.multiplier - b.multiplier),
 | 
			
		||||
        valueGetter: multiplier => multiplier.id,
 | 
			
		||||
        textGetter: multiplier => T.settings.labels.movementSpeed.speeds[multiplier.id],
 | 
			
		||||
        category: categoryGame,
 | 
			
		||||
        restartRequired: false,
 | 
			
		||||
        changeCb: (app, id) => {},
 | 
			
		||||
    }),
 | 
			
		||||
 | 
			
		||||
    new BoolSetting("alwaysMultiplace", categoryGame, (app, value) => {}),
 | 
			
		||||
    new BoolSetting("offerHints", categoryGame, (app, value) => {}),
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user